time.Location.lookup (method)
10 uses
time (current package)
format.go#L1288: name, offset, _, _, _ := local.lookup(t.unixSec())
time.go#L449: _, offset, _, _, _ := l.lookup(sec)
time.go#L470: name, offset, _, _, _ = l.lookup(sec)
time.go#L1123: name, offset, _, _, _ = t.loc.lookup(t.unixSec())
time.go#L1257: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
time.go#L1361: _, _, _, _, isDST := t.loc.lookup(t.Unix())
time.go#L1440: _, offset, start, end, _ := loc.lookup(unix)
time.go#L1446: _, offset, _, _, _ = loc.lookup(utc)
zoneinfo.go#L124: func (l *Location) lookup(sec int64) (name string, offset int, start, end int64, isDST bool) {
zoneinfo.go#L599: nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))